void @ModuleMouseSleep(int milli_second);
Prevents the module from receiving mouse input for the specified duration. This can be used in modules where continuous mouse clicks are not allowed.
Parameters
int milli_second : The duration to prevent mouse clicks (1000 = 1 sec)
Return Value
None
Example
@ModuleMouseSleep(2000);
Description : Prevents mouse clicks in the current module for 2 seconds (2000 milliseconds).
Version Information
Supported Version: 10.3.4 or Higher
Related Helps